Package com.vdek.agv.gen.schema_20220101
Enum KennzeichenMWXTyp
- java.lang.Object
-
- java.lang.Enum<KennzeichenMWXTyp>
-
- com.vdek.agv.gen.schema_20220101.KennzeichenMWXTyp
-
- All Implemented Interfaces:
Serializable,Comparable<KennzeichenMWXTyp>
public enum KennzeichenMWXTyp extends Enum<KennzeichenMWXTyp>
Alphanumerischer Inhalt mit entweder M(ännlich), W(eiblich) oder X(unbestimmt) D(ivers)Java-Klasse für Kennzeichen_MWX_Typ.
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
<simpleType name="Kennzeichen_MWX_Typ"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <length value="1"/> <pattern value="M"/> <pattern value="W"/> <pattern value="X"/> <pattern value="D"/> <enumeration value="M"/> <enumeration value="W"/> <enumeration value="X"/> <enumeration value="D"/> </restriction> </simpleType>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static KennzeichenMWXTypfromValue(String v)Stringvalue()static KennzeichenMWXTypvalueOf(String name)Returns the enum constant of this type with the specified name.static KennzeichenMWXTyp[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
M
public static final KennzeichenMWXTyp M
-
W
public static final KennzeichenMWXTyp W
-
X
public static final KennzeichenMWXTyp X
-
D
public static final KennzeichenMWXTyp D
-
-
Method Detail
-
values
public static KennzeichenMWXTyp[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (KennzeichenMWXTyp c : KennzeichenMWXTyp.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static KennzeichenMWXTyp valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
value
public String value()
-
fromValue
public static KennzeichenMWXTyp fromValue(String v)
-
-